home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
kermit.columbia.edu
/
kermit.columbia.edu.tar
/
kermit.columbia.edu
/
e
/
misc.save
/
000064_fdc@panix.com_Tue Jan 30 14:20:19 2007.msg
< prev
next >
Wrap
Internet Message Format
|
2011-07-03
|
2KB
Path: reader2.panix.com!reader1.panix.com!panix!not-for-mail
From: Frank da Cruz <fdc@panix.com>
Newsgroups: comp.protocols.kermit.misc
Subject: Re: record length translate
Date: Tue, 30 Jan 2007 19:20:11 +0000 (UTC)
Organization: PANIX Public Access Internet and UNIX, NYC
Lines: 23
Message-ID: <slrnerv6jb.8p2.fdc@panix2.panix.com>
References: <EvKdnTZhodermCPYnZ2dnUVZ_qunnZ2d@clg.qc.ca>
Reply-To: fdc@columbia.edu
NNTP-Posting-Host: panix2.panix.com
X-Trace: reader2.panix.com 1170184811 5016 166.84.1.2 (30 Jan 2007 19:20:11 GMT)
X-Complaints-To: abuse@panix.com
NNTP-Posting-Date: Tue, 30 Jan 2007 19:20:11 +0000 (UTC)
User-Agent: slrn/0.9.8.0 (NetBSD)
Xref: panix comp.protocols.kermit.misc:15637
On 2007-01-29, Don Lewis <dlewis@dawsoncollege.qc.ca> wrote:
: I'm using Kermit 8.0.209 under VMS 7.3-2
: I receive a ziped archive of files which are created on a system using code
: page 850. I need the data to be iso-latin1. Kermit translates the
: characters correctly using the command translate source-file cp850
: latin1-iso translated-file. The problem is that Kermit breaks up records
: that are longer than 254 bytes into multiple 254 byte records. The incoming
: file is defined as stream_lf with carriage return carriage control. I can
: convert the file to variable with a declared record length, but Kermit still
: breaks up long records. Is there a setting to change this behavior, or is
: 254 bytes a Kermit limitation?
:
I believe it's just that, in the TRANSLATE command (as in the COPY command),
Kermit just uses regular C library i/o, rather than RMS. If you transferred
the files unzipped, Kermit could convert the character sets on the fly ("set
file character-set", "set transfer character-set") and store them in a
sensible record format.
There might be a way to force matters using some crazy syntax in the
destination filename, but I don't remember enough about VMS to say for sure.
Of course, any VMS programmers are welcome to take a look at this and jump in.
- Frank